@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
:root {
    /* Dark Theme Colors */
    --dark-primary: #5865F2;
    --dark-primary-dark: #4752C4;
    --dark-secondary: #2C2F33;
    --dark-bg: #1e2124;
    --dark-darker-bg: #121315;
    --dark-text: #ffffff;
    --dark-text-secondary: #b9bbbe;
    --dark-card-bg: rgba(32, 34, 37, 0.7);
    --dark-card-hover: rgba(47, 49, 54, 0.6);
    --dark-gradient-blue: linear-gradient(90deg, #5865F2, #00BFFF);
    
    /* Light Theme Colors */
    --light-primary: #5865F2;
    --light-primary-dark: #4752C4;
    --light-secondary: #e3e5e8;
    --light-bg: #f2f3f5;
    --light-darker-bg: #ffffff;
    --light-text: #2e3338;
    --light-text-secondary: #4f5660;
    --light-card-bg: rgba(230, 232, 235, 0.9);
    --light-card-hover: rgba(220, 222, 225, 1);
    --light-card-border: rgba(200, 200, 200, 0.5);
    --light-gradient-blue: linear-gradient(90deg, #5865F2, #00BFFF);
    
    /* Common Colors */
    --success: #57F287;
    --warning: #FEE75C;
    --danger: #ED4245;
    --gold: #FFD700;
    
    /* Current Theme (defaults to dark) */
    --primary: var(--dark-primary);
    --primary-dark: var(--dark-primary-dark);
    --secondary: var(--dark-secondary);
    --bg: var(--dark-bg);
    --darker-bg: var(--dark-darker-bg);
    --text: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --card-bg: var(--dark-card-bg);
    --card-hover: var(--dark-card-hover);
    --card-border: transparent;
    --gradient-blue: var(--dark-gradient-blue);
}

.light-theme {
    --primary: var(--light-primary);
    --primary-dark: var(--light-primary-dark);
    --secondary: var(--light-secondary);
    --bg: var(--light-bg);
    --darker-bg: var(--light-darker-bg);
    --text: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --card-bg: var(--light-card-bg);
    --card-hover: var(--light-card-hover);
    --card-border: var(--light-card-border);
    --gradient-blue: var(--light-gradient-blue);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--darker-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.theme-toggle:hover {
    background: rgba(128, 128, 128, 0.2);
}

.theme-toggle i {
    color: var(--text);
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--darker-bg);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(88, 101, 242, 0.2), transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 5px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    animation: pulse 3s infinite;
}

.hero p {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(88, 101, 242, 0.8);
    }
    100% {
        text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(88, 101, 242, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn-hero {
    background: var(--gradient-blue);
    padding: 15px 40px;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.5);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--text);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Services Section */
.services {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.services::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-secondary);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.price {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text);
}

.price strong {
    color: var(--primary);
    font-size: 24px;
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 10px 0 10px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge.new {
    background: var(--success);
}

.badge.best-seller {
    background: var(--warning);
    color: #333;
}

/* Stats Section */
.stats {
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::after {
    top: 0;
    left: 0;
}

.stat-card h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.stat-card h3::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.stat-card:hover h3::before {
    width: 50px;
}

.stat-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.5s ease;
    border: 1px solid var(--card-border);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(88, 101, 242, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
    position: relative;
}

.testimonial-author::before {
    content: '—';
    margin-right: 5px;
    color: var(--text-secondary);
}

/* Purchase Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--darker-bg);
    border-radius: 10px;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(128, 128, 128, 0.1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 5px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.2);
}

.duration-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.duration-option {
    flex: 1;
    min-width: 100px;
}

.duration-option input[type="radio"] {
    display: none;
}

.duration-option label {
    display: block;
    padding: 10px;
    text-align: center;
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option input[type="radio"]:checked + label {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.price-summary {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-row.total {
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 5px;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 500;
}

.cart-item-price {
    color: var(--primary);
}

.remove-item {
    color: var(--danger);
    cursor: pointer;
    margin-left: 10px;
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    text-align: center;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: block;
    padding: 15px;
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + label {
    background: rgba(128, 128, 128, 0.2);
    border-color: var(--primary);
}

.payment-option img {
    height: 30px;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.05;
    bottom: -100px;
    left: -100px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

/* Scroll Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 0.8s ease;
}

.rotate-in.active {
    opacity: 1;
    transform: rotateY(0);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Cart Icon */
.cart-icon {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--darker-bg);
    z-index: 1001;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

/* PayPal Button */
.paypal-button {
    background: #0070ba;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.paypal-button:hover {
    background: #005ea6;
}

.paypal-button img {
    height: 20px;
}

/* Success Message */
.success-message {
    display: none;
    background: rgba(87, 242, 135, 0.1);
    border: 1px solid var(--success);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.success-message i {
    color: var(--success);
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 60px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid, .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .duration-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card, .stat-card, .testimonial-card {
        padding: 20px;
    }
}

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Welcome Animation */
.welcome-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.welcome-content {
    text-align: center;
    transform: scale(0.8);
    opacity: 0;
    animation: welcomeIn 1s forwards 0.5s;
}

@keyframes welcomeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.welcome-logo {
    font-size: 80px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: 5px;
    position: relative;
}

.welcome-logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: lineGrow 1.5s forwards 1s;
}

@keyframes lineGrow {
    to {
        width: 100px;
    }
}

.welcome-text {
    color: var(--text-secondary);
    font-size: 20px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.glitch-effect {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}